home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 October / PCWorld_2001-10_cd.bin / Software / Vyzkuste / context / ConTEXTsetup.exe / {app} / Template / Java.ctpl < prev    next >
INI File  |  2001-04-11  |  1KB  |  61 lines

  1. [for | for block]
  2. for (int i=0; i<|; i++) {}
  3.  
  4. [prog | Java Program Template]
  5. public class |MyProg {
  6.  
  7.     /** Code documentation here */
  8.     public static void main(String[] args) {
  9.         /* multi-line and semi-line comments here */
  10.         // one-line comments here
  11.         System.out.println("Hello, world");
  12.     }
  13. }
  14.  
  15. [servlet | Java Servlet Skeleton]
  16. import java.io.*;
  17. import javax.servlet.*;
  18. import javax.servlet.http.*;
  19.  
  20. public class |MyServlet extends HttpServlet {
  21.     PrintWriter out;
  22.  
  23.     public void doGet(HttpServletRequest req, HttpServletResponse res) {
  24.         try {
  25.             res.setContentType("text/html");
  26.             out = res.getWriter();
  27.             String html = "<html>Hello, world</html>";
  28.             out.println(html);
  29.         }
  30.         catch (Exception e) { e.printStackTrace(); }
  31.     }
  32.  
  33.     public void doPost(HttpServletRequest req, HttpServletResponse res) {
  34.         try {
  35.             res.setContentType("text/html");
  36.             out = res.getWriter();
  37.             String html = "<html>Hello, world</html>";
  38.             out.println(html);
  39.         }
  40.         catch (Exception e) { e.printStackTrace(); }
  41.     }
  42. }
  43.  
  44. [try | try-catch block]
  45. try {
  46.     |
  47. }
  48. catch (Exception e) {
  49.     System.out.println("Unexpected exception");
  50.     e.printStackTrace();
  51. }
  52. finally {}
  53.  
  54. [while | while block]
  55. int i=0;
  56. while (i < |) {
  57.  
  58.     i++;
  59. }
  60.  
  61.